home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 July & August / PCWorld_2006-07-08_cd.bin / komunikace / apache / apache_2[1].2.2-win32-x86-no_ssl.msi / Data1.cab / _138DCF959FA630BF528775DB08FE3302 < prev    next >
Text File  |  2006-04-29  |  3KB  |  125 lines

  1. /* Copyright 2002-2005 The Apache Software Foundation or its licensors, as
  2.  * applicable.
  3.  *
  4.  * Licensed under the Apache License, Version 2.0 (the "License");
  5.  * you may not use this file except in compliance with the License.
  6.  * You may obtain a copy of the License at
  7.  *
  8.  *     http://www.apache.org/licenses/LICENSE-2.0
  9.  *
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  */
  16.  
  17. /*
  18.  * apr_ldap.h is generated from apr_ldap.h.in by configure -- do not edit apr_ldap.h
  19.  */
  20. /**
  21.  * @file apr_ldap.h
  22.  * @brief  APR-UTIL LDAP 
  23.  */
  24. #ifndef APU_LDAP_H
  25. #define APU_LDAP_H
  26.  
  27. /**
  28.  * @defgroup APR_Util_LDAP LDAP
  29.  * @ingroup APR_Util
  30.  * @{
  31.  */
  32.  
  33. /* this will be defined if LDAP support was compiled into apr-util */
  34. #define APR_HAS_LDAP            1
  35.  
  36. /* identify the LDAP toolkit used */
  37. #define APR_HAS_NETSCAPE_LDAPSDK    0
  38. #define APR_HAS_SOLARIS_LDAPSDK     0
  39. #define APR_HAS_NOVELL_LDAPSDK      0
  40. #define APR_HAS_MOZILLA_LDAPSDK     0
  41. #define APR_HAS_OPENLDAP_LDAPSDK    0
  42. #define APR_HAS_MICROSOFT_LDAPSDK   1
  43. #define APR_HAS_OTHER_LDAPSDK       0
  44.  
  45.  
  46. /*
  47.  * Handle the case when LDAP is enabled
  48.  */
  49. #if APR_HAS_LDAP
  50.  
  51. /*
  52.  * The following #defines are DEPRECATED and should not be used for
  53.  * anything. They remain to maintain binary compatibility.
  54.  * The original code defined the OPENLDAP SDK as present regardless
  55.  * of what really was there, which was way bogus. In addition, the
  56.  * apr_ldap_url_parse*() functions have been rewritten specifically for
  57.  * APR, so the APR_HAS_LDAP_URL_PARSE macro is forced to zero.
  58.  */
  59. #define APR_HAS_LDAP_SSL 1
  60. #define APR_HAS_LDAP_URL_PARSE 0
  61.  
  62.  
  63. /*
  64.  * Include the standard LDAP header files.
  65.  */
  66.  
  67. #include <winldap.h>
  68.  
  69.  
  70. /*
  71.  * Detected standard functions
  72.  */
  73. #define APR_HAS_LDAPSSL_CLIENT_INIT 0
  74. #define APR_HAS_LDAPSSL_CLIENT_DEINIT 0
  75. #define APR_HAS_LDAPSSL_ADD_TRUSTED_CERT 0
  76. #define APR_HAS_LDAP_START_TLS_S 0
  77. #define APR_HAS_LDAP_SSLINIT 1
  78. #define APR_HAS_LDAPSSL_INIT 0
  79. #define APR_HAS_LDAPSSL_INSTALL_ROUTINES 0
  80.  
  81.  
  82. /*
  83.  * Make sure the secure LDAP port is defined
  84.  */
  85. #ifndef LDAPS_PORT
  86. #define LDAPS_PORT 636  /* ldaps:/// default LDAP over TLS port */
  87. #endif
  88.  
  89.  
  90. /* Note: Macros defining const casting has been removed in APR v1.0,
  91.  * pending real support for LDAP v2.0 toolkits.
  92.  *
  93.  * In the mean time, please use an LDAP v3.0 toolkit.
  94.  */
  95. #if LDAP_VERSION_MAX <= 2
  96. #error Support for LDAP v2.0 toolkits has been removed from apr-util. Please use an LDAP v3.0 toolkit.
  97. #endif 
  98.  
  99. #ifdef __cplusplus
  100. extern "C" {
  101. #endif /* __cplusplus */
  102.  
  103. /**
  104.  * This structure allows the C LDAP API error codes to be returned
  105.  * along with plain text error messages that explain to us mere mortals
  106.  * what really happened.
  107.  */
  108. typedef struct apr_ldap_err_t {
  109.     const char *reason;
  110.     const char *msg;
  111.     int rc;
  112. } apr_ldap_err_t;
  113.  
  114. #ifdef __cplusplus
  115. }
  116. #endif
  117.  
  118. #include "apr_ldap_url.h"
  119. #include "apr_ldap_init.h"
  120. #include "apr_ldap_option.h"
  121.  
  122. /** @} */
  123. #endif /* APR_HAS_LDAP */
  124. #endif /* APU_LDAP_H */
  125.